home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 022 / lemacs / makefile < prev    next >
Makefile  |  1995-03-17  |  2KB  |  80 lines

  1. CC =        cc
  2. CFLAGS =    -O
  3.  
  4. OBJ1 =        ansi.o basic.o bind.o buffer.o display.o file.o
  5. OBJ2 =        fileio.o hp150.o line.o lock.o main.o random.o region.o
  6. OBJ3 =        search.o spawn.o tcap.o termio.o vt52.o window.o word.o
  7. OBJ =        obj1.o obj2.o obj3.o
  8.  
  9. emacs :        $(OBJ)
  10.         $(CC) $(LDFLAGS) -o emacs $(OBJ)
  11.  
  12. obj1.o :    $(OBJ1)
  13.         join $(OBJ1) as obj1.o
  14.  
  15. obj2.o :    $(OBJ2)
  16.         join $(OBJ2) as obj2.o
  17.  
  18. obj3.o :    $(OBJ3)
  19.         join $(OBJ3) as obj3.o
  20.  
  21. ansi.o :    ansi.c estruct.h edef.h efunc.h
  22.         $(CC) -c $(CFLAGS) ansi.c
  23.  
  24. basic.o :    basic.c estruct.h edef.h efunc.h
  25.         $(CC) -c $(CFLAGS) basic.c
  26.  
  27. bind.o :    bind.c estruct.h edef.h efunc.h epath.h
  28.         $(CC) -c $(CFLAGS) bind.c
  29.  
  30. buffer.o :    buffer.c estruct.h edef.h efunc.h
  31.         $(CC) -c $(CFLAGS) buffer.c
  32.  
  33. display.o :    display.c estruct.h edef.h efunc.h
  34.         $(CC) -c $(CFLAGS) display.c
  35.  
  36. file.o :    file.c estruct.h edef.h efunc.h
  37.         $(CC) -c $(CFLAGS) file.c
  38.  
  39. fileio.o :    fileio.c estruct.h edef.h efunc.h
  40.         $(CC) -c $(CFLAGS) fileio.c
  41.  
  42. hp150.o :    hp150.c estruct.h edef.h efunc.h
  43.         $(CC) -c $(CFLAGS) hp150.c
  44.  
  45. line.o :    line.c estruct.h edef.h efunc.h
  46.         $(CC) -c $(CFLAGS) line.c
  47.  
  48. lock.o :    lock.c estruct.h edef.h efunc.h
  49.         $(CC) -c $(CFLAGS) lock.c
  50.  
  51. main.o :    main.c estruct.h edef.h efunc.h
  52.         $(CC) -c $(CFLAGS) main.c
  53.  
  54. random.o :    random.c estruct.h edef.h efunc.h
  55.         $(CC) -c $(CFLAGS) random.c
  56.  
  57. region.o :    region.c estruct.h edef.h efunc.h
  58.         $(CC) -c $(CFLAGS) region.c
  59.  
  60. search.o :    search.c estruct.h edef.h efunc.h
  61.         $(CC) -c $(CFLAGS) search.c
  62.  
  63. spawn.o :    spawn.c estruct.h edef.h efunc.h
  64.         $(CC) -c $(CFLAGS) spawn.c
  65.  
  66. tcap.o :    tcap.c estruct.h edef.h efunc.h
  67.         $(CC) -c $(CFLAGS) tcap.c
  68.  
  69. termio.o :    termio.c estruct.h edef.h efunc.h
  70.         $(CC) -c $(CFLAGS) termio.c
  71.  
  72. vt52.o :    vt52.c estruct.h edef.h efunc.h
  73.         $(CC) -c $(CFLAGS) vt52.c
  74.  
  75. window.o :    window.c estruct.h edef.h efunc.h
  76.         $(CC) -c $(CFLAGS) window.c
  77.  
  78. word.o :    word.c estruct.h edef.h efunc.h
  79.         $(CC) -c $(CFLAGS) word.c
  80.